<?php $myArray = array( 'php', 'guide', '*', 'foo', '*', 'bar' );$myArray = array_diff($myArray, array('*'));print_r($myArray);